home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 050 / pxg11.arc / PXG.DOC < prev    next >
Encoding:
Text File  |  1985-10-06  |  2.6 KB  |  80 lines

  1.  
  2.  
  3. PXG - The Pascal Expert Generator
  4.  
  5. By Samuel H. Smith,  Public Domain Material, Version 1.1, 6-Oct-85
  6.  
  7.  
  8. This program allows you to prepare a set of rules for a
  9. decision-tree based expert system.
  10.  
  11. You teach the expert by repeatedly "Learning" new facts in the
  12. interactive learn mode.
  13.  
  14. When you have your rules working properly, PXG will generate a
  15. stand-alone expert program in turbo pascal!
  16.  
  17.  
  18. This disk contains the following files:
  19.  
  20.    PXG11.COM      The pascal expert generator
  21.    PXG11.PAS      Source code for the pascal expert generator
  22.    PXG.DOC        Documentation for the pascal expert generator
  23.    PXG.INC        Include file needed when compiling your experts
  24.  
  25.    LANGEXP.KDB    A knowledge base for a language selection expert
  26.    LANGEXP.PAS    Generated source code for the language expert
  27.    LANGEXP.COM    The compiled language expert example
  28.  
  29.    MECHANIC.KDB   The knowledge base for an auto mechanic expert
  30.    MECHANIC.PAS   Generated source code for the expert mechanic
  31.    MECHANIC.COM   The compiled expert mechanic example
  32.  
  33.  
  34.  
  35. To start the Pascal Expert Generator, enter this command:
  36.  
  37.    A> pxg11
  38.  
  39.  
  40.  
  41. Legal commands while running PXG:
  42.  
  43.    New          Create a new knowledge base
  44.                 Use this to erase the current set of rules and prepare
  45.                 to create your own expert.   You will be prompted to
  46.                 enter the title of the expert.  This title will be
  47.                 included in the expert program that you generate.
  48.  
  49.    Read         Read a knowledge base from a disk file
  50.                 Use this to load in a saved knowledge base.  You
  51.                 can load either of the demonstration knowledge
  52.                 bases (LANGEXP or MECHANIC) with this option.
  53.  
  54.    Write        Write the current knowledge base to a file
  55.                 Use this to save your knowledge bases.  You can
  56.                 also edit a saved knowledge base with a text
  57.                 editor to improve the rules.
  58.  
  59.    Display      Display the rules in the current knowledge base
  60.                 Use this to get a listing of all of the current
  61.                 rules.
  62.  
  63.    Program      Generate an expert program from this knowledge base
  64.                 PXG will write a complete, ready to compile program
  65.                 in turbo pascal to implement your expert!
  66.  
  67.    Learn        Test this knowledge base and learn new rules
  68.                 Operate the expert and learn new rules.  This is
  69.                 the way you refine and build up your expert.
  70.  
  71.    Quit         Exit to the system
  72.  
  73.    ?            Print a list of commands.
  74.  
  75.  
  76.  
  77.  
  78.  
  79.  
  80.